home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / text / hyper / hsc_source.lha / hsc / source / hsclib / tag_misc.h < prev    next >
C/C++ Source or Header  |  1996-05-18  |  597b  |  27 lines

  1. /*
  2. ** hsclib/tag_misc.h
  3. **
  4. ** misc. tag-callbacks
  5. **
  6. */
  7.  
  8. #ifndef HSC_TAG_MISC_H
  9. #define HSC_TAG_MISC_H
  10.  
  11. /*
  12. **
  13. ** extern references
  14. **
  15. */
  16. extern BOOL handle_sgml_comment( HSCPRC *hp, HSCTAG *tag );
  17.  
  18. extern BOOL handle_base( HSCPRC *hp, HSCTAG *tag );
  19. extern BOOL handle_blink( HSCPRC *hp, HSCTAG *tag );
  20. extern BOOL handle_frame( HSCPRC *hp, HSCTAG *tag );
  21. extern BOOL handle_heading( HSCPRC *hp, HSCTAG *tag );
  22. extern BOOL handle_img( HSCPRC *hp, HSCTAG *tag );
  23. extern BOOL handle_pre( HSCPRC *hp, HSCTAG *tag );
  24. extern BOOL handle_end_pre( HSCPRC *hp, HSCTAG *tag );
  25.  
  26. #endif /* HSC_TAG_MISC_H */
  27.